Browse Source

minor fixes for build, relating to docs

git-svn-id: svn+ssh://jackaudio.org/trunk/jack@9 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.109.0
pbd 24 years ago
parent
commit
8416615fd1
2 changed files with 10 additions and 6 deletions
  1. +6
    -6
      configure.in
  2. +4
    -0
      doc/Makefile

+ 6
- 6
configure.in View File

@@ -23,19 +23,19 @@ AC_SUBST(JACK_RELEASE)

AM_INIT_AUTOMAKE(jack,${JACK_VERSION})

CFLAGS="-g -Wall -I.. -D_REENTRANT"
AM_PATH_GLIB(1.0.0,,[AC_MSG_ERROR([*** JACK requires glib, but it doesn't appear to be installed])])

CFLAGS="-g -Wall -D_REENTRANT"
OPT_CFLAGS="-D_REENTRANT -O6 -Wall -fomit-frame-pointer -ffast-math -fstrength-reduce -funroll-loops -fmove-all-movables"

AM_PATH_GLIB(1.0.0,,[AC_MSG_ERROR([*** JACK requires glib, but it doesn't appear to be installed])])
AC_ARG_ENABLE(optimize,
[ --enable-optimize ask the compiler for its best optimizations.],
[ if test "x$enable_optimize" != "xno" ; then CFLAGS="$OPT_CFLAGS" ; fi ])

CFLAGS="$CFLAGS $GLIB_CFLAGS"
CXXFLAGS="$CFLAGS"
LIBS="$LIBS $GLIB_LIBS"

AC_ARG_ENABLE(optimize,
[ --enable-optimize ask the compiler for its best optimizations.],
[ if test "x$enable_optimize" != "xno" ; then CFLAGS="$CFLAGS $OPT_CFLAGS" ; fi ])

XTRA=""

AC_ARG_ENABLE(fltk-client,


+ 4
- 0
doc/Makefile View File

@@ -28,6 +28,10 @@ fullname = $(shell awk -F: '/$(user)/ { print $$5}' /etc/passwd)
.PHONY: manual
.PHONY: upload

all: html
install:
@:

html: $(HTML-FILES)

upload: build-updir


Loading…
Cancel
Save