r92: *** empty log message ***
[ctsim.git] / configure.in
index dcf7aee15388473dbe2d0b137ceb61c82c01a39e..9e32c1f9c041b309e960c74723d20abeb58b8df1 100644 (file)
@@ -77,8 +77,8 @@ AC_CHECK_LIB(m, main)
 AC_CHECK_LIB(curses, main, [curses=true], [curses=false])
 AC_CHECK_LIB(ncurses, main, [ncurses=true], [ncurses=false])
 AC_CHECK_LIB(g2, main, [g2=true], [g2=false])
-AC_CHECK_LIB(wx_gtk, main, [wxwin=true; wx_gtk=true], [wxwin=false])
-AC_CHECK_LIB(wx_msw, main, [wxwin=true; wx_msw=true], [wxwin=false])
+AC_CHECK_LIB(wx_gtk, main, [wxwin=true; wx_gtk=true; AC_DEFINE(HAVE_WXWINDOWS)], [wxwin=false])
+AC_CHECK_LIB(wx_msw, main, [wxwin=true; wx_msw=true; AC_DEFINE(HAVE_WXWINDOWS)], [wxwin=false])
 
 if test "$zlib" = "true" ; then
   AC_CHECK_LIB(png, main, [png=true ; AC_DEFINE(HAVE_PNG)], [png=false])
@@ -285,34 +285,33 @@ if test "$no_x" != "yes" ; then
   AC_DEFINE(HAVE_SGP)
   AM_CONDITIONAL(HAVE_SGP, test 1==1)
   LDFLAGS="$LDFLAGS -L../libezplot -L../libgraph -L/usr/X11R6/lib"
-  ctlibs_base="$ctlibs_base -lezplot -lgraph $X_BASIC_LIBS $X_TOOLKIT_LIBS"
+  ctlibs_graphics="$ctlibs_base -lezplot -lgraph $X_BASIC_LIBS $X_TOOLKIT_LIBS"
   AC_MSG_RESULT(yes)
 else
   AC_MSG_RESULT(no)
 fi
 
-dnl Setting projet libraries and includes
-LDFLAGS="$LDFLAGS -L../libkmath -L../libk -L../libcio -L../libir" 
-ctlibs_base="$ctlibs_base -lkmath -lk -lcio"
 if test "$png" = "true" ; then
-  ctlibs_base="$ctlibs_base -lpng"
+  ctlibs_graphics="$ctlibs_graphics -lpng"
 fi
 if test "$zlib" = "true" ; then
-  ctlibs_base="$ctlibs_base -lz"
+  ctlibs_graphics="$ctlibs_graphics -lz"
 fi
 if test "$g2" = "true" ; then
-  ctlibs_base="$ctlibs_base -lg2"
+  ctlibs_graphics="$ctlibs_graphics -lg2"
+fi
+if test "$wx_gtk" = "true" ; then
+  ctlibs_graphics="$ctlibs_graphics -lwx_gtk"
 fi
 
-ctlibs="-lir $ctlibs_base"
-
+dnl Setting projet libraries and includes
+LDFLAGS="$LDFLAGS -L../libkmath -L../libk -L../libcio -L../libir" 
+ctlibs="$ctlibs_base -lir $ctlibs_graphics -lkmath -lk -lcio"
 AC_SUBST(ctlibs)
 
 if test -n "$lamdir" ; then
-dnl  ctlamlibs="-lir_lam $ctlibs_base"
-dnl  AC_SUBST(ctlamlibs)
   lamprograms="ctrec-lam phm2if-lam phm2rs-lam"
   AC_SUBST(lamprograms)
- fi
+fi
 
 AC_OUTPUT(Makefile libezplot/Makefile src/Makefile libgraph/Makefile libkmath/Makefile Makefile libk/Makefile libir/Makefile libcio/Makefile man/Makefile cgi-bin/ctsim.cgi cgi-bin/Makefile html/simulate.html html/Makefile include/Makefile getopt/Makefile src/sample-ctrec.sh cgi-bin/ctsim.conf)