Changeset 13969 for trunk/FACT++
- Timestamp:
- 05/30/12 10:52:36 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/configure.ac
r13868 r13969 8 8 #[AC_]PACKAGE_STRING 9 9 #[AC_]PACKAGE_BUGREPORT 10 AC_INIT([FACT++],[1.0],[thomas.bretz@epfl.ch],[FACTpp],[http ://fact.isdc.unige.ch/svn/trunk/FACT++/])10 AC_INIT([FACT++],[1.0],[thomas.bretz@epfl.ch],[FACTpp],[https://fact.isdc.unige.ch/svn/trunk/FACT++/]) 11 11 AC_PREREQ([2.65]) 12 12 AC_CONFIG_FILES([Makefile]) # causes x/Makefile.in to be created if x/Makefile.am exists … … 58 58 # Postponed after the BOOST library tests otherwise the check for boost::thread fails 59 59 #CXXFLAGS+=" -std=c++0x" 60 61 PKG_CHECK_MODULES(DBUS, dbus-1 dbus-glib-1, HAVE_DBUS=yes, HAVE_DBUS=no) 62 63 CPPFLAGS+=" `pkg-config --cflags dbus-1 dbus-glib-1`" 64 LDFLAGS+=" `pkg-config --libs dbus-1 dbus-glib-1`" 65 66 # dbus-1 67 # dbus-glib-1 68 # QtOpenGL 69 # gl 70 # QtCore 71 # soprano 72 # cfitsio 60 73 61 74 ###################################################################### … … 377 390 AM_CONDITIONAL(HAS_NOVA, [test "$HAVE_NOVA" = yes]) 378 391 AM_CONDITIONAL(HAS_SOPRANO, [test "$HAVE_SOPRANO" = yes]) 392 AM_CONDITIONAL(HAS_DBUS, [test "$HAVE_DBUS" = yes]) 379 393 380 394 AM_CONDITIONAL(HAS_GUI, [test "$QT4_VERSION" -a "$HAVE_GL" = yes -a "$HAVE_GLU" = yes -a "$HAVE_QGL" = yes -a "$HAVE_ROOT_QT" = yes ]) … … 388 402 AM_COND_IF(HAS_ZLIB, [AC_DEFINE(HAVE_ZLIB)], ) 389 403 AM_COND_IF(HAS_NOVA, [AC_DEFINE(HAVE_NOVA)], ) 404 AM_COND_IF(HAS_DBUS, [AC_DEFINE(HAVE_DBUS)], ) 390 405 391 406 #AM_COND_IF(HAS_FITS_H, [ … … 456 471 AC_MSG_NOTICE([ cfitsio / 'fitsio.h' found: $HAVE_CFITSIO]) 457 472 AC_MSG_NOTICE([ CCfits / 'CCfits/CCfits' found: $HAVE_CCFITS]) 473 AC_MSG_NOTICE([ DBus-1, DBus-glib-1 / pkg-config found: $HAVE_DBUS]) 458 474 AM_COND_IF(HAS_LIBXP, 459 475 AC_MSG_NOTICE([ Motif/lesstif / 'Xm/Xm.h' 'libXp' found: yes]), … … 560 576 AC_MSG_WARN([ Either of the necessary packages not found - viewer GUI disabled!]) 561 577 ) 562 AC_MSG_NOTICE() 578 AM_COND_IF(HAS_NOVA,, AC_MSG_WARN([ libnova missing - smartfact will be compiles without astronomy support!])) 579 AM_COND_IF(HAS_DBUS,, AC_MSG_WARN([ DBus libraries missing - skypeclient will not be compiled!])) 580 AM_COND_IF(HAS_SOPRANO,, AC_MSG_WARN([ Soprano libraries missing - tngweather will not be compiled!])) 581 AC_MSG_NOTICE()
Note:
See TracChangeset
for help on using the changeset viewer.