diff options
author | bertrand <Bertrand.Guiheneuf@inria.fr> | 1999-04-23 23:58:42 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-04-23 23:58:42 +0800 |
commit | f30be523d2cd3e066d110c4036bf1db5401f69bb (patch) | |
tree | b3fe29ea09a113ed9acd79041a23794ad22603ca /camel/Makefile.am | |
parent | 5fc2a350d18184211a7a20d865944b575fd84a14 (diff) | |
download | gsoc2013-evolution-f30be523d2cd3e066d110c4036bf1db5401f69bb.tar.gz gsoc2013-evolution-f30be523d2cd3e066d110c4036bf1db5401f69bb.tar.zst gsoc2013-evolution-f30be523d2cd3e066d110c4036bf1db5401f69bb.zip |
Utility functions to parse URLs. Stolen shamelessly from gzilla
1999-04-23 bertrand <Bertrand.Guiheneuf@inria.fr>
* camel/url-util.[ch]:
Utility functions to parse URLs.
Stolen shamelessly from gzilla (www.gzilla.com)
written by Raph Levien <raph@acm.org>
* camel/Makefile.am: added url-util.[ch]
compilation.
svn path=/trunk/; revision=871
Diffstat (limited to 'camel/Makefile.am')
-rw-r--r-- | camel/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/camel/Makefile.am b/camel/Makefile.am index 36e06b23cf..ad6c0af101 100644 --- a/camel/Makefile.am +++ b/camel/Makefile.am @@ -16,14 +16,16 @@ libcamel_la_SOURCES = \ camel-folder.c \ camel-service.c \ camel-store.c \ - gstring-util.c + gstring-util.c \ + url-util.c libcamelinclude_HEADERS = \ camel-log.h \ camel-folder.h \ camel-service.h \ camel-store.h \ - gstring-util.h + gstring-util.h \ + url-util.h libcamel_la_LDFLAGS = -version-info 0:0:0 -rpath $(libdir) |