Kaydet (Commit) 0bb9eccd authored tarafından Ozan Çağlayan's avatar Ozan Çağlayan

Bump to 3.0.0,

Fix bugzilla address,
Fix activation problem
üst 435e69fb
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
......
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
#define CONFIG_H #define CONFIG_H
#ifndef VERSION #ifndef VERSION
#define VERSION "2.9.99" #define VERSION "3.0.0"
#endif #endif
#ifndef DBUS_SERVER_ADDRESS #ifndef DBUS_SERVER_ADDRESS
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
#endif #endif
#ifndef WWW_BUGS #ifndef WWW_BUGS
#define WWW_BUGS "http://bugzilla.pardus.org.tr" #define WWW_BUGS "http://bugs.pardus.org.tr"
#endif #endif
extern char *config_server_address; extern char *config_server_address;
......
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
......
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
......
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
......
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
......
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
......
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
......
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
......
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
......
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
......
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
......
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
......
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
......
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
...@@ -349,6 +349,11 @@ loop_exec() ...@@ -349,6 +349,11 @@ loop_exec()
log_info("Listening for connections...\n"); log_info("Listening for connections...\n");
/* This clears any pending messages avoiding weird timeouts on some systems
* with dbus >= 1.2.22
*/
while (dbus_connection_dispatch(bus_conn) == DBUS_DISPATCH_DATA_REMAINS);
while (1) { while (1) {
struct pollfd fds[MAX_FDS]; struct pollfd fds[MAX_FDS];
DBusWatch *watches[MAX_WATCHES]; DBusWatch *watches[MAX_WATCHES];
......
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
......
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
......
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
......
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
......
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
......
/* /*
* *
* Copyright (c) 2005-2009, TUBITAK/UEKAE * Copyright (c) 2005-2010, TUBITAK/UEKAE
* *
* Permission is hereby granted, free of charge, to any person * Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation * obtaining a copy of this software and associated documentation
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment