diff options
author | Tor Lillqvist <tml@iki.fi> | 2001-02-21 12:41:28 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2001-02-21 12:41:28 +0000 |
commit | cd89e4cca6d203c3f3324d7368bbbd6634bc11d3 (patch) | |
tree | b936b7b061d7aba67025c96bf7709e0866c7ebb3 /makefile.mingw.in | |
parent | d1a05f990e35d83e20f62b303fe14d836f779921 (diff) |
Match also UNC paths on Win32.
2001-02-21 Tor Lillqvist <tml@iki.fi>
* gutils.c (g_path_is_absolute): Match also UNC paths on Win32.
* gthread.h: Include gtypes.h to be sure to get GLIB_VAR
definition, remove definition from here.
* gunicode.h: Remove duplicate GLIB_VAR definition from here, too.
* gutils.c: (Win32) Use USERPROFILE as home dir if present. On
Win2k, HOMEDRIVE and HOMEPATH aren't reliable.
* Makefile.am (INCLUDES): Add -DGLIB_COMPILATION.
* makefile.mingw.in: Remove install target, Windows isn't Unix.
* testgdate.c
* testgdateparser.c
* testglib.c: Undefine GLIB_COMPILATION.
* glib.def: Updates.
* .cvsignore
* */.cvsignore: Ignore also .obj, .dll, .lib and .exe files.
Diffstat (limited to 'makefile.mingw.in')
-rw-r--r-- | makefile.mingw.in | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/makefile.mingw.in b/makefile.mingw.in index ef4f514db..338deb611 100644 --- a/makefile.mingw.in +++ b/makefile.mingw.in @@ -3,10 +3,6 @@ ## Use: make -f makefile.mingw -# Change this to wherever you want to install the DLLs. This directory -# should be in your PATH. -BIN = /bin - TOP = .. include build/win32/make.mingw @@ -23,7 +19,7 @@ DEFINES = -DHAVE_CONFIG_H -DGLIB_COMPILATION -DG_LOG_DOMAIN=g_log_domain_glib -D DEPCFLAGS = $(INTL_CFLAGS) $(LIBICONV_CFLAGS) DLLS_TO_BUILD = \ - glib-$(GLIB_VER).dll \ + glib-$(GLIB_VER).dll \ sub-gmodule \ sub-gthread \ sub-gobject @@ -37,9 +33,6 @@ all : \ testgdate.exe \ testgdateparser.exe -install : all - $(INSTALL) $(DLLS_TO_BUILD) $(BIN) - glib_OBJECTS = \ garray.o \ gasyncqueue.o \ |