Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Files
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
430
Issues
430
List
Boards
Labels
Service Desk
Milestones
Merge Requests
25
Merge Requests
25
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
Files
Commits
8eba94a6
Commit
8eba94a6
authored
Dec 30, 1999
by
John Sullivan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Linked in GNOME-XML library, which will be used for bookmarks.
parent
f6e05ed4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
1 deletion
+19
-1
ChangeLog-20000414
ChangeLog-20000414
+7
-0
configure.in
configure.in
+9
-0
src/Makefile.am
src/Makefile.am
+3
-1
No files found.
ChangeLog-20000414
View file @
8eba94a6
1999-12-30 John Sullivan <sullivan@eazel.com>
Linked in GNOME-XML library, since I'll need it for bookmarks.
* configure.in: defined XML-related macros (copied from gconf)
* src/Makefile.am: included $(XML_CFLAGS) and $(XML_LIBS)
1999-12-30 John Sullivan <sullivan@eazel.com>
The bookmark-editing window is now functional, though simple.
...
...
configure.in
View file @
8eba94a6
...
...
@@ -56,6 +56,15 @@ AC_SUBST(VFS_LIBS)
AM_PATH_LIBGLADE(,AC_MSG_ERROR([*** Libglade 0.7 or better is needed.]), gnome)
AC_PATH_PROG(XML_CONFIG,xml-config,no)
if test x$XML_CONFIG = xno; then
AC_MSG_ERROR(Couldn't find xml-config)
fi
XML_LIBS=`$XML_CONFIG --libs`
XML_CFLAGS=`$XML_CONFIG --cflags`
AC_SUBST(XML_LIBS)
AC_SUBST(XML_CFLAGS)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
...
...
src/Makefile.am
View file @
8eba94a6
...
...
@@ -6,6 +6,7 @@ INCLUDES=-I$(top_srcdir) -I$(top_builddir) \
$(BONOBO_CFLAGS)
$(GNORBA_CFLAGS)
\
$(GNOMEUI_CFLAGS)
$(GDK_PIXBUF_CFLAGS)
\
$(VFS_CFLAGS)
\
$(XML_CFLAGS)
\
-DVERSION
=
"
\"
$(VERSION)
\"
"
\
$(WERROR)
...
...
@@ -15,7 +16,8 @@ LDADD= file-manager/libntl-file-manager.la \
$(GNORBA_LIBS)
\
$(GNOMEUI_LIBS)
\
$(GDK_PIXBUF_LIBS)
\
$(VFS_LIBS)
$(VFS_LIBS)
\
$(XML_LIBS)
nautilus_SOURCES
=
\
nautilus-bookmark.h
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment