summaryrefslogtreecommitdiff
path: root/tools/gmmproc.in
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@usa.net>2003-01-27 23:18:25 +0000
committerMurray Cumming <murrayc@src.gnome.org>2003-01-27 23:18:25 +0000
commit169c7aac1ef4443b8ccf572a71e18527b0954507 (patch)
tree7099d61e5d53915a11e2acf09a588bcadbe2b102 /tools/gmmproc.in
parent9812c56ef8576532b214f64f3f2ef01a46e31bcd (diff)
downloadglibmm-169c7aac1ef4443b8ccf572a71e18527b0954507.tar.gz
Removed RefPtr<>::is_null() to encourate use of more pointer-like operator
2003-01-27 Murray Cumming <murrayc@usa.net> * glib/glibmm/refptr.h: Removed RefPtr<>::is_null() to encourate use of more pointer-like operator bool() instead. Wanted to remove clear() too, but there is no =0 equivalent yet. * tools/gmmproc.in: Change harcoded gtkmm-2.0/m4 path to glibmm-2.4/m4.
Diffstat (limited to 'tools/gmmproc.in')
-rw-r--r--tools/gmmproc.in13
1 files changed, 4 insertions, 9 deletions
diff --git a/tools/gmmproc.in b/tools/gmmproc.in
index 664e29ec..9b4f5549 100644
--- a/tools/gmmproc.in
+++ b/tools/gmmproc.in
@@ -43,7 +43,8 @@ BEGIN {
my $exec_prefix = "@exec_prefix@";
my $libdir = "@libdir@";
- $main::procdir = "$libdir/gtkmm-2.0/proc";
+ # This line must match the install directory in m4/Makefile.am
+ $main::procdir = "$libdir/glibmm-2.4/proc";
$main::m4path = "@M4@";
# This line must match install dir from pm/Makefile.am
@@ -67,7 +68,7 @@ $main::mergecdocs = 0; # e.g. gtk_docs.xml, contain C comments to be added to ou
{ # checking the environment for a set variable can trigger a warning
no warnings;
- $main::debug = 1 if ($ENV{'GTKMMPROC_DEBUG'} eq 1);
+ $main::debug = 1 if ($ENV{'GMMPROC_DEBUG'} eq 1);
}
# prototypes
@@ -174,7 +175,7 @@ sub print_usage()
--doc Produces a header file for documentation. (FIXME)
--debug Leave intermediate output arround for analysis.
- Alternatively, set GTKMMPROC_DEBUG=1 in the environment.
+ Alternatively, set GMMPROC_DEBUG=1 in the environment.
--unwrapped Warn about possible unwrapped functions.
@@ -182,11 +183,6 @@ sub print_usage()
-I dir Specify the directory with m4 files.
- -l
- --local Local widget (not part of gtkmm). (FIXME)
-
- --header-prefix Override default header #ifndef name. (FIXME)
-
Note: This will read srcdir/name.{hg,ccg} file and generates destdir/name.cc
';
@@ -247,7 +243,6 @@ sub parse_command_line_args()
$main::srcdir = $ARGV[0];
$main::source = $_;
- # This line must match the install directory in m4/Makefile.am
push @main::macrodirs,"$main::procdir/m4";
}