ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/configure.in
(Generate patch)

Comparing projects/libstatgrab/configure.in (file contents):
Revision 1.30 by tdb, Mon Sep 29 09:00:07 2003 UTC vs.
Revision 1.31 by tdb, Sat Oct 4 16:05:55 2003 UTC

# Line 61 | Line 61 | linux-gnu)
61          ;;
62   esac
63  
64 + # User specified curses/ncurses prefix
65 + AC_ARG_WITH([curses-prefix],
66 +        [  --with-curses-prefix=PATH     curses (or ncurses) is in PATH],
67 +        [
68 +                if test -d "$withval/lib"; then
69 +                        SAIDARLIBS="-L${withval}/lib ${SAIDARLIBS}"
70 +                fi
71 +                if test -d "$withval/include"; then
72 +                        SAIDARCPPFLAGS="-I${withval}/include ${SAIRDARCPPFLAGS}"
73 +                fi
74 +        ]
75 + )
76 +
77 + # Check if user wants to disable statgrab
78 + AM_CONDITIONAL(STATGRAB, true)
79 + AC_ARG_ENABLE(statgrab,
80 +        [  --disable-statgrab      disable building of statgrab],
81 +        [
82 +                if test "x$enableval" = "xno" ; then
83 +                        AM_CONDITIONAL(STATGRAB, false)
84 +                fi
85 +        ]
86 + )
87 +
88 + # Check if user wants to disable saidar
89 + AM_CONDITIONAL(SAIDAR, true)
90 + AC_ARG_ENABLE(saidar,
91 +        [  --disable-saidar        disable building of saidar],
92 +        [
93 +                if test "x$enableval" = "xno" ; then
94 +                        AM_CONDITIONAL(SAIDAR, false)
95 +                fi
96 +        ],
97 +        [
98 +                # saidar needs curses
99 +                # (if we don't find curses we disable saidar)
100 +                MP_WITH_CURSES
101 +        ]
102 + )
103 +
104 + # Check if the user would prefer not to build examples
105 + AM_CONDITIONAL(EXAMPLES, true)
106 + AC_ARG_ENABLE(examples,
107 +        [  --disable-examples      disable building of examples],
108 +        [
109 +                if test "x$enableval" = "xno" ; then
110 +                        AM_CONDITIONAL(EXAMPLES, false)
111 +                fi
112 +        ]
113 + )
114 +
115 + # Check if user wants to install manpages
116 + AM_CONDITIONAL(MANPAGES, true)
117 + AC_ARG_ENABLE(manpages,
118 +        [  --disable-manpages      disable installation of manpages],
119 +        [
120 +                if test "x$enableval" = "xno" ; then
121 +                        AM_CONDITIONAL(MANPAGES, false)
122 +                fi
123 +        ]
124 + )
125 +
126 + # The LIBS and CPPFLAGS that saidar needs
127 + AC_SUBST(SAIDARLIBS)
128 + AC_SUBST(SAIDARCPPFLAGS)
129 +
130 + # The flags needed to link to libstatgrab
131 + # (ie. our dependencies)
132   AC_SUBST(LINKFLAGS)
133  
134   # And finish by changing these files
135 < AC_CONFIG_FILES([Makefile src/Makefile src/libstatgrab/Makefile src/statgrab/Makefile docs/Makefile examples/Makefile libstatgrab.pc src/statgrab/statgrab-make-mrtg-config src/statgrab/statgrab-make-mrtg-index])
135 > AC_CONFIG_FILES([Makefile src/Makefile src/libstatgrab/Makefile src/statgrab/Makefile docs/Makefile examples/Makefile libstatgrab.pc src/statgrab/statgrab-make-mrtg-config src/statgrab/statgrab-make-mrtg-index src/saidar/Makefile])
136  
137   AC_OUTPUT

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines