mirror of
https://git.freebsd.org/ports.git
synced 2025-06-18 11:10:32 -04:00
releases in that it focuses more on stability and functionality than on new features. Not that it doesn't have its share of new and exciting items. See http://www.gnome.org/start/2.18/ for all the goodies in this release. GNOME 2.18 for FreeBSD would not have been possible without the hard work of the FreeBSD GNOME Team and our intrepid band of testers including J. W. Ballantine, Pawel Worach, Yasuda Keisuke, Pascal Hofstee, miwi, Yoshihiro Ota, Vladimir Grebenschikov, Jukka A. Ukkonen, Phillip Neumann, Franz Klammer, and Neal Delmonico.
23 lines
553 B
C
23 lines
553 B
C
--- src/oobs-user.c.orig Fri Sep 15 19:16:41 2006
|
|
+++ src/oobs-user.c Tue Oct 31 23:12:29 2006
|
|
@@ -18,6 +18,10 @@
|
|
* Authors: Carlos Garnacho Parro <carlosg@gnome.org>
|
|
*/
|
|
|
|
+#if defined(HAVE_CONFIG_H)
|
|
+#include <config.h>
|
|
+#endif
|
|
+
|
|
#include <glib-object.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
@@ -30,7 +34,9 @@
|
|
#include "oobs-group.h"
|
|
#include "oobs-defines.h"
|
|
#include "utils.h"
|
|
+#ifdef HAVE_CRYPT_H
|
|
#include <crypt.h>
|
|
+#endif
|
|
|
|
#define OOBS_USER_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), OOBS_TYPE_USER, OobsUserPrivate))
|
|
|