Changed config vars CONFIG_ISDNLOG_xx to CONFIG_ISDN_LOG_xx, as choosing

'NL' matched the NL in ISDNLOG, so that "OG_DE=y" appeared in .config .
This commit is contained in:
Paul Slootman 1998-08-01 11:18:22 +00:00
parent a1913f5d07
commit 74b7a36b7f
3 changed files with 7 additions and 7 deletions

View File

@ -18,7 +18,7 @@ if [ "$CONFIG_ISDNLOG_MYSQLDB" = "y" ]; then
string 'directory of mysql' CONFIG_ISDNLOG_MYSQLDIR
fi
choice 'Country specific chargeinfo support' \
"DE CONFIG_ISDNLOG_DE \
NL CONFIG_ISDNLOG_NL \
CH CONFIG_ISDNLOG_CH"
"DE CONFIG_ISDN_LOG_DE \
NL CONFIG_ISDN_LOG_NL \
CH CONFIG_ISDN_LOG_CH" DE
endmenu

4
isdnlog/configure vendored
View File

@ -633,13 +633,13 @@ cat >> confdefs.h <<EOF
#define REBOOTCMD "$REBOOTCMD"
EOF
if test "$CONFIG_ISDNLOG_CH" = "y" ; then
if test "$CONFIG_ISDN_LOG_CH" = "y" ; then
cat >> confdefs.h <<\EOF
#define ISDN_CH 1
EOF
fi
if test "$CONFIG_ISDNLOG_NL" = "y" ; then
if test "$CONFIG_ISDN_LOG_NL" = "y" ; then
cat >> confdefs.h <<\EOF
#define ISDN_NL 1
EOF

View File

@ -75,10 +75,10 @@ AC_DEFINE_UNQUOTED(CHARGEFILE,"$CHARGEFILE")
AC_DEFINE_UNQUOTED(RELOADCMD,"$RELOADCMD")
AC_DEFINE_UNQUOTED(STOPCMD,"$STOPCMD")
AC_DEFINE_UNQUOTED(REBOOTCMD,"$REBOOTCMD")
if test "$CONFIG_ISDNLOG_CH" = "y" ; then
if test "$CONFIG_ISDN_LOG_CH" = "y" ; then
AC_DEFINE(ISDN_CH,1)
fi
if test "$CONFIG_ISDNLOG_NL" = "y" ; then
if test "$CONFIG_ISDN_LOG_NL" = "y" ; then
AC_DEFINE(ISDN_NL,1)
fi